home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
_CDDIALO
/
CDCONTRO.H
< prev
next >
Wrap
Text File
|
1990-04-18
|
1KB
|
44 lines
/************************************************************************************/
/* Copyright ⌐ 1989 Philip Keller */
/* All Rights Reserved */
/************************************************************************************/
/*
Author: Philip Keller
Belvidere Computing
3002 Belvidere Ave. S.W.
Seattle, WA 98126
File: CDControl.h
The Dialog Control Class Interface
Superclass: CControl
Subclasses: None
Change History:
1.0 11/25/89 Philip Keller Original version.
1.1 11/26/89 Philip Keller Added clickCmd processing.
1.2 02/04/90 Philip Keller Eliminated standard includes.
1.3 04/18/90 Philip Keller Put standard includes back in (!).
*******************************************************************************/
#define _H_CDControl
#include <CControl.h> /* Control class */
struct CDControl : CControl
{
long clickCmd; /* Command to issue upon click */
void IDControl( /* Initialize */
CView *anEnclosure, /* Enclosure */
CBureaucrat *aSupervisor, /* Supervisor */
Rect *aRect, /* Rectangle */
ControlHandle aHandle); /* Control handle */
void DoClick( /* Handle clicks */
Point hitPt, /* Point hit */
short modifierKeys, /* Modifier keys */
long when); /* Time of click */
void SetClickCmd( /* Set click command */
long aClickCmd); /* Specified command number */
};